Piman

compose.yml

---
services:
  piman-frontend:
    build:
      context: https://github.com/GalwayCal/piman.git
      dockerfile: Dockerfile.frontend
    container_name: piman-frontend
    ports:
      - "3000:3000"
    depends_on:
      - piman-backend
    environment:
      - REACT_APP_BACKEND_URL=http://localhost:3001
    restart: unless-stopped

  piman-backend:
    build:
      context: https://github.com/GalwayCal/piman.git
      dockerfile: Dockerfile.backend
    container_name: piman-backend
    ports:
      - "3001:3001"
    environment:
      - ENCRYPTION_KEY=${ENCRYPTION_KEY}
      - JWT_SECRET=${JWT_SECRET}
      - DATABASE_URL=./data/piman.db
    volumes:
      - piman_data:/app/data
    restart: unless-stopped

volumes:
  piman_data:
On this page
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9